home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_3.5 / Examples / Printer / HP_DeskJet_CMYK / devs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-29  |  2.4 KB  |  108 lines

  1. #ifndef LOCALESTR_DEVS_H
  2. #define LOCALESTR_DEVS_H
  3.  
  4.  
  5. /****************************************************************************/
  6.  
  7.  
  8. /* This file was created automatically by CatComp.
  9.  * Do NOT edit by hand!
  10.  */
  11.  
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17. #ifdef CATCOMP_ARRAY
  18. #undef CATCOMP_NUMBERS
  19. #undef CATCOMP_STRINGS
  20. #define CATCOMP_NUMBERS
  21. #define CATCOMP_STRINGS
  22. #endif
  23.  
  24. #ifdef CATCOMP_BLOCK
  25. #undef CATCOMP_STRINGS
  26. #define CATCOMP_STRINGS
  27. #endif
  28.  
  29.  
  30. /****************************************************************************/
  31.  
  32.  
  33. #ifdef CATCOMP_NUMBERS
  34.  
  35.  
  36. #ifdef PRINTER_HP_DESKJET
  37. #define MSG_HPDJ_DENSITY1_TXT 5000
  38. #define MSG_HPDJ_DENSITY2_TXT 5001
  39. #define MSG_HPDJ_DENSITY3_TXT 5002
  40. #define MSG_HPDJ_DENSITY4_TXT 5003
  41. #define MSG_HPDJ_DENSITY5_TXT 5004
  42. #define MSG_HPDJ_DENSITY6_TXT 5005
  43. #define MSG_HPDJ_DENSITY7_TXT 5006
  44. #endif /* PRINTER_HP_DESKJET */
  45.  
  46. #endif /* CATCOMP_NUMBERS */
  47.  
  48.  
  49. /****************************************************************************/
  50.  
  51.  
  52. #ifdef CATCOMP_STRINGS
  53.  
  54.  
  55. #ifdef PRINTER_HP_DESKJET
  56. #define MSG_HPDJ_DENSITY1_TXT_STR "No depletion, no shingling"
  57. #define MSG_HPDJ_DENSITY2_TXT_STR "No depletion, no shingling"
  58. #define MSG_HPDJ_DENSITY3_TXT_STR "No depletion, no shingling"
  59. #define MSG_HPDJ_DENSITY4_TXT_STR "25% depletion, no shingling"
  60. #define MSG_HPDJ_DENSITY5_TXT_STR "25% depletion, 50% shingling"
  61. #define MSG_HPDJ_DENSITY6_TXT_STR "25% depletion, 25% shingling"
  62. #define MSG_HPDJ_DENSITY7_TXT_STR "No depletion, 25% shingling"
  63. #endif /* PRINTER_HP_DESKJET */
  64.  
  65. #endif /* CATCOMP_STRINGS */
  66.  
  67.  
  68. /****************************************************************************/
  69.  
  70.  
  71. #ifdef CATCOMP_ARRAY
  72.  
  73. struct CatCompArrayType
  74. {
  75.     LONG   cca_ID;
  76.     STRPTR cca_Str;
  77. };
  78.  
  79. static const struct CatCompArrayType CatCompArray[] =
  80. {
  81.  
  82. #ifdef PRINTER_HP_DESKJET
  83.     {MSG_HPDJ_DENSITY1_TXT,(STRPTR)MSG_HPDJ_DENSITY1_TXT_STR},
  84.     {MSG_HPDJ_DENSITY2_TXT,(STRPTR)MSG_HPDJ_DENSITY2_TXT_STR},
  85.     {MSG_HPDJ_DENSITY3_TXT,(STRPTR)MSG_HPDJ_DENSITY3_TXT_STR},
  86.     {MSG_HPDJ_DENSITY4_TXT,(STRPTR)MSG_HPDJ_DENSITY4_TXT_STR},
  87.     {MSG_HPDJ_DENSITY5_TXT,(STRPTR)MSG_HPDJ_DENSITY5_TXT_STR},
  88.     {MSG_HPDJ_DENSITY6_TXT,(STRPTR)MSG_HPDJ_DENSITY6_TXT_STR},
  89.     {MSG_HPDJ_DENSITY7_TXT,(STRPTR)MSG_HPDJ_DENSITY7_TXT_STR},
  90. #endif /* PRINTER_HP_DESKJET */
  91. };
  92.  
  93. #endif /* CATCOMP_ARRAY */
  94.  
  95.  
  96. /****************************************************************************/
  97.  
  98.  
  99. struct LocaleInfo
  100. {
  101.     APTR li_LocaleBase;
  102.     APTR li_Catalog;
  103. };
  104.  
  105.  
  106.  
  107. #endif /* LOCALESTR_DEVS_H */
  108.